home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / asm_subr.arc / RD_KBD < prev    next >
Encoding:
Text File  |  1986-01-01  |  256 b   |  8 lines

  1. ; read keyboard
  2.     mov    ah,8        ; rd_kbd function call
  3.     int    21h        ; function call
  4.     cmp    al,'q'        ; is it quittin' time ?
  5.     jnz    newcolor
  6.     jmp    depart        ; exit pgm if match
  7. ;
  8.